.construction-wrapper{
	display: none;
	z-index: 99;
	position: absolute;
	width: 100%;
	min-height: 100dvh;
	max-height: auto;
  background-color: #F0EBE3;
  font-family: Arial, sans-serif;
}

.construction-wrapper-hidden{
	animation: constructionFadeOut 1s;
	z-index: 99;
	position: absolute;
	width: 100%;
	min-height: 100dvh;
	max-height: auto;
	background-color: #F0EBE3;
	font-family: Arial, sans-serif;
}

.construction-title {
  position: relative;
  padding-top: 10px;
  text-align: center;
  padding-left: 11%;
  padding-right: 11%;
}

.construction-title img {
  position: absolute;
  margin-top: -30px;
  top: 50%;
  margin-left: 6px;
  width: 50px;
}

.countdown-wrapper {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

@keyframes constructionFadeOut {
  0% {
	display: block;
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

.countdown-timer {
  display: flex;
  justify-content: space-between;
  width: 200px;
  margin-bottom: 20px;
}

.days, .hours, .minutes, .seconds {
	font-size: 48px;
  font-weight: bold;
  margin: 0 10px;
}

.days {
	color: #000;
}

.hours {
	color: #666;
}

.minutes {
	color: #999;
}

.seconds {
	color: #ccc;
}

.countdown-message {
  font-size: 18px;
  color: #666;
}

@media only screen and (max-width: 1500px){
	.container {
		width: 80%;
		margin: 40px auto;
		padding: 20px;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
}

@media only screen and (min-width: 1501px){
	.container {
		width: 1200px;
		margin: 40px auto;
		padding: 20px;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
}

@media only screen and (min-width: 1001px){
	.construction-title h1 {
	  font-size: 36px;
	  margin-bottom: 20px;
	  margin-top: -10px;
	}
	
	p {
	  font-size: 18px;
	  margin-bottom: 20px;
	  text-align: center;
	}
	
	#gameCanvas {
  display: block;
  width: 500px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.pong-canvas {
	position: relative;
	margin: 0 auto;
	width: 500px;
	border: 1px solid transparent;
}
}

@media only screen and (max-width: 1000px){
	.construction-title h1 {
	  font-size: calc(28px + 6 * ((100vw - 320px) / 500));
	  margin-bottom: 20px;
	  margin-top: -10px;
	}
	
	p {
	  font-size: calc(10px + 6 * ((100vw - 320px) / 500));
	  margin-bottom: 20px;
	  text-align: center;
	}
	
	#gameCanvas {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
	}
	
  .pong-canvas {
	position: relative;
	margin: 0 auto;
	width: 60%;
	border: 1px solid transparent;
}
}

.start-game{
	top: 10px;
	position: relative;
	padding: 5px;
margin: 0 auto;
display: block;
}

@keyframes draw-border {
  0% {
    border-color: transparent;
  }
  100% {
    border-color: black; /* or any other color */
  }
}

.pong-canvas.animate{
	animation: draw-border 2s ease-in-out;
  }
  
  .pong-canvas.animated{
	border: 1px solid black;
  }
.game-over-message{
	display: none;
	position: relative;
	margin: auto;
}